go.opentelemetry.io/otel/attribute.Value.vtype (field)

15 uses

	go.opentelemetry.io/otel/attribute (current package)
		value.go#L34: 	vtype    Type
		value.go#L64: 		vtype:   BOOL,
		value.go#L71: 	return Value{vtype: BOOLSLICE, slice: attribute.BoolSliceValue(v)}
		value.go#L87: 		vtype: INT64SLICE,
		value.go#L95: 		vtype:   INT64,
		value.go#L102: 	return Value{vtype: INT64SLICE, slice: attribute.Int64SliceValue(v)}
		value.go#L108: 		vtype:   FLOAT64,
		value.go#L115: 	return Value{vtype: FLOAT64SLICE, slice: attribute.Float64SliceValue(v)}
		value.go#L121: 		vtype:    STRING,
		value.go#L128: 	return Value{vtype: STRINGSLICE, slice: attribute.StringSliceValue(v)}
		value.go#L133: 	return v.vtype
		value.go#L145: 	if v.vtype != BOOLSLICE {
		value.go#L164: 	if v.vtype != INT64SLICE {
		value.go#L183: 	if v.vtype != FLOAT64SLICE {
		value.go#L202: 	if v.vtype != STRINGSLICE {